Autogenerated HTML docs for v1.5.2-35-ga334 
diff --git a/config.txt b/config.txt index ee1c35e..179cb17 100644 --- a/config.txt +++ b/config.txt 
@@ -256,6 +256,11 @@  +  Common unit suffixes of 'k', 'm', or 'g' are supported.   +core.excludeFile:: +	In addition to '.gitignore' (per-directory) and +	'.git/info/exclude', git looks into this file for patterns +	of files which are not meant to be tracked. +  alias.*:: 	Command aliases for the gitlink:git[1] command wrapper - e.g. 	after defining "alias.last = cat-file commit HEAD", the invocation 
diff --git a/git-config.html b/git-config.html index 8790012..a13d1c4 100644 --- a/git-config.html +++ b/git-config.html 
@@ -903,6 +903,16 @@  <p>Common unit suffixes of <em>k</em>, <em>m</em>, or <em>g</em> are supported.</p>   </dd>   <dt>  +core.excludeFile  +</dt>  +<dd>  +<p>  + In addition to <em>.gitignore</em> (per-directory) and  + <em>.git/info/exclude</em>, git looks into this file for patterns  + of files which are not meant to be tracked.  +</p>  +</dd>  +<dt>   alias.*   </dt>   <dd>  @@ -1680,7 +1690,7 @@  </div>   <div id="footer">   <div id="footer-text">  -Last updated 21-May-2007 06:13:41 UTC  +Last updated 22-May-2007 07:23:05 UTC   </div>   </div>   </body>  
diff --git a/git-describe.html b/git-describe.html index e46d249..d1ff5bd 100644 --- a/git-describe.html +++ b/git-describe.html 
@@ -272,7 +272,7 @@  </div>   <h2>SYNOPSIS</h2>   <div class="sectionbody">  -<p><em>git-describe</em> [--all] [--tags] [--abbrev=&lt;n&gt;] &lt;committish&gt;&#8230;</p>  +<p><em>git-describe</em> [--all] [--tags] [--contains] [--abbrev=&lt;n&gt;] &lt;committish&gt;&#8230;</p>   </div>   <h2>DESCRIPTION</h2>   <div class="sectionbody">  @@ -311,6 +311,16 @@  </p>   </dd>   <dt>  +--contains  +</dt>  +<dd>  +<p>  + Instead of finding the tag that predates the commit, find  + the tag that comes after the commit, and thus contains it.  + Automatically implies --tags.  +</p>  +</dd>  +<dt>   --abbrev=&lt;n&gt;   </dt>   <dd>  @@ -418,7 +428,7 @@  </div>   <div id="footer">   <div id="footer-text">  -Last updated 04-Apr-2007 18:33:37 UTC  +Last updated 22-May-2007 07:23:05 UTC   </div>   </div>   </body>  
diff --git a/git-describe.txt b/git-describe.txt index 47a583d..dc47b65 100644 --- a/git-describe.txt +++ b/git-describe.txt 
@@ -8,7 +8,7 @@    SYNOPSIS  -------- -'git-describe' [--all] [--tags] [--abbrev=<n>] <committish>... +'git-describe' [--all] [--tags] [--contains] [--abbrev=<n>] <committish>...    DESCRIPTION  ----------- @@ -31,6 +31,11 @@ 	Instead of using only the annotated tags, use any tag 	found in `.git/refs/tags`.   +--contains:: +	Instead of finding the tag that predates the commit, find +	the tag that comes after the commit, and thus contains it. +	Automatically implies --tags. +  --abbrev=<n>:: 	Instead of using the default 8 hexadecimal digits as the 	abbreviated object name, use <n> digits. 
diff --git a/git-name-rev.html b/git-name-rev.html index 517e2ed..80b261b 100644 --- a/git-name-rev.html +++ b/git-name-rev.html 
@@ -317,6 +317,18 @@  commits, and pass to stdout   </p>   </dd>  +<dt>  +--name-only  +</dt>  +<dd>  +<p>  + Instead of printing both the SHA-1 and the name, print only  + the name. If given with --tags the usual tag prefix of  + "tags/" is also ommitted from the name, matching the output  + of <a href=":git-describe.html">:git-describe(1)</a> more closely. This option  + cannot be combined with --stdin.  +</p>  +</dd>   </dl>   </div>   <h2>EXAMPLE</h2>  @@ -352,7 +364,7 @@  </div>   <div id="footer">   <div id="footer-text">  -Last updated 19-May-2007 04:51:27 UTC  +Last updated 22-May-2007 07:23:07 UTC   </div>   </div>   </body>  
diff --git a/git-name-rev.txt b/git-name-rev.txt index d6c8bf8..9a1645d 100644 --- a/git-name-rev.txt +++ b/git-name-rev.txt 
@@ -34,6 +34,13 @@ 	Read from stdin, append "(<rev_name>)" to all sha1's of nameable 	commits, and pass to stdout   +--name-only:: +	Instead of printing both the SHA-1 and the name, print only +	the name. If given with --tags the usual tag prefix of +	"tags/" is also ommitted from the name, matching the output +	of gitlink::git-describe[1] more closely. This option +	cannot be combined with --stdin. +  EXAMPLE  -------   
diff --git a/git-status.html b/git-status.html index a690a15..50dd9cd 100644 --- a/git-status.html +++ b/git-status.html 
@@ -300,6 +300,10 @@  mean the same thing and the latter is kept for backward   compatibility) and <tt>color.status.&lt;slot&gt;</tt> configuration variables   to colorize its output.</p>  +<p>As for <a href="git-add.html">git-add(1)</a>, the configuration variable  +<em>core.excludesfile</em> can indicate a path to a file containing patterns  +of file names to exclude, in addition to patterns given in  +<em>info/exclude</em> and <em>.gitignore</em>.</p>   </div>   <h2>Author</h2>   <div class="sectionbody">  @@ -316,7 +320,7 @@  </div>   <div id="footer">   <div id="footer-text">  -Last updated 04-Apr-2007 18:34:26 UTC  +Last updated 22-May-2007 07:23:07 UTC   </div>   </div>   </body>  
diff --git a/git-status.txt b/git-status.txt index e9e193f..d701538 100644 --- a/git-status.txt +++ b/git-status.txt 
@@ -42,6 +42,11 @@  compatibility) and `color.status.<slot>` configuration variables  to colorize its output.   +As for gitlink:git-add[1], the configuration variable +'core.excludesfile' can indicate a path to a file containing patterns +of file names to exclude, in addition to patterns given in +'info/exclude' and '.gitignore'. +    Author  ------